Comparison
Example (Step 3)
Problem solving sequence:
1.
Algorithm
2.
Pseudo-code
3.
C code
if (amountRequested < accountBalance)
{
withdraw(amountRequested);
} else {
withdraw(0);
notifyCustomer();
}